home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / quicktime / quicktime for java / zoo tutorial / module 1- displaying image / source / zoo1.java
Encoding:
Java Source  |  2000-06-23  |  3.1 KB  |  67 lines

  1. import java.awt.*;
  2. import java.awt.event.*;
  3. import java.io.IOException;
  4.  
  5. /**
  6.  * QTZoo Module 1 - Initializing QTJava and displaying an image
  7.  * This application requires QuickTime for Java
  8.  *
  9.  * @author Michael Hopkins
  10.  * @author Levi Brown
  11.  * @author Apple Computer, Inc.
  12.  * @version 1.0.1 10/21/1999
  13.  *
  14.  * Copyright:     © Copyright 1999 Apple Computer, Inc. All rights reserved.
  15.  *    
  16.  * Disclaimer:    IMPORTANT:  This Apple software is supplied to you by Apple Computer, Inc.
  17.  *                ("Apple") in consideration of your agreement to the following terms, and your
  18.  *                use, installation, modification or redistribution of this Apple software
  19.  *                constitutes acceptance of these terms.  If you do not agree with these terms,
  20.  *                please do not use, install, modify or redistribute this Apple software.
  21.  *
  22.  *                In consideration of your agreement to abide by the following terms, and subject
  23.  *                to these terms, Apple grants you a personal, non-exclusive license, under Apple’s
  24.  *                copyrights in this original Apple software (the "Apple Software"), to use,
  25.  *                reproduce, modify and redistribute the Apple Software, with or without
  26.  *                modifications, in source and/or binary forms; provided that if you redistribute
  27.  *                the Apple Software in its entirety and without modifications, you must retain
  28.  *                this notice and the following text and disclaimers in all such redistributions of
  29.  *                the Apple Software.  Neither the name, trademarks, service marks or logos of
  30.  *                Apple Computer, Inc. may be used to endorse or promote products derived from the
  31.  *                Apple Software without specific prior written permission from Apple.  Except as
  32.  *                expressly stated in this notice, no other rights or licenses, express or implied,
  33.  *                are granted by Apple herein, including but not limited to any patent rights that
  34.  *                may be infringed by your derivative works or by other works in which the Apple
  35.  *                Software may be incorporated.
  36.  *
  37.  *                The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
  38.  *                WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
  39.  *                WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  40.  *                PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
  41.  *                COMBINATION WITH YOUR PRODUCTS.
  42.  *
  43.  *                IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
  44.  *                CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  45.  *                GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  46.  *                ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
  47.  *                OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT
  48.  *                (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN
  49.  *                ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  50.  *
  51.  * Revision History
  52.  * ---------------------------------------------------------------------------
  53.  * 12/2/99 MSH added slightly better error handling, reformatting and comments 
  54.  *
  55.  */
  56.  
  57. public class Zoo1 extends Frame
  58. {
  59.     
  60.     /**
  61.      * Main entry point for the application
  62.      */
  63.     public static void main( String[] args )
  64.     {
  65.     }        
  66. }
  67.